home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d6 / cplus211.arc / CBACKUP.BAT < prev    next >
DOS Batch File  |  1990-03-06  |  482b  |  16 lines

  1. echo off
  2. cls
  3. echo This batch file will backup the database using an archive program
  4. echo then copy the compressed file to a floppy.  You may edit this
  5. echo file if you wish to use a compression program other than PKZIP
  6. echo.
  7. echo Press CTRL-C to break now or 
  8. pause
  9. echo Now Archiving %1 database ... please standby
  10. pkzip -es -a %1.zip %1.dt %1.hdr %1.nx? %1.not %1.nt0
  11. echo.
  12. echo Now place a formatted disk into drive A:
  13. pause
  14. copy %1.zip a:
  15. echo Backup completed!
  16.